home *** CD-ROM | disk | FTP | other *** search
/ C!T ROM 3 / ct-rom iiib.zip / ct-rom iiib / OS2 / GRAFISCH / BLANKR33 / INSTALL.CMD < prev    next >
OS/2 REXX Batch file  |  1994-07-09  |  5KB  |  146 lines

  1. /* Screen Blanker 3.3 Installation */
  2. '@Echo Off'
  3. Call RxFuncAdd 'SysLoadFuncs', 'REXXUTIL', 'SysLoadFuncs'
  4. Call SysLoadFuncs
  5. Signal On Failure Name FAILURE
  6. Signal On Halt Name HALT
  7. Signal On Syntax Name SYNTAX
  8. Call SysCls
  9. Say 'Installing Screen Blanker Version 3.3...'
  10. Say ''
  11. Result = SysFileTree( 'BLANKER.EXE', 'Files', 'F' )
  12. If Files.0 = 0 Then
  13.   Do
  14.   Say 'ERROR: BLANKER.EXE not found! Installation cancelled.'
  15.   Signal DONE
  16.   End
  17. Result = SysFileTree( 'BLANKER.HLP', 'Files', 'F' )
  18. If Files.0 = 0 Then
  19.   Do
  20.   Say 'ERROR: BLANKER.HLP not found! Installation cancelled.'
  21.   Signal DONE
  22.   End
  23. Result = SysFileTree( 'BLANKER.DLL', 'Files', 'F' )
  24. If Files.0 = 0 Then
  25.   Do
  26.   Say 'ERROR: BLANKER.DLL not found! Installation cancelled.'
  27.   Signal DONE
  28.   End
  29. Result = SysFileTree( 'BLANKER.BMP', 'Files', 'F' )
  30. If Files.0 = 0 Then
  31.   Do
  32.   Say 'ERROR: BLANKER.BMP not found! Installation cancelled.'
  33.   Signal DONE
  34.   End
  35. Result = SysFileTree( 'BLANKER.DOC', 'Files', 'F' )
  36. If Files.0 = 0 Then
  37.   Do
  38.   Say 'ERROR: BLANKER.DOC not found! Installation cancelled.'
  39.   Signal DONE
  40.   End
  41. Result = SysFileTree( 'FORTUNES.DAT', 'Files', 'F' )
  42. If Files.0 = 0 Then
  43.   Do
  44.   Say 'ERROR: FORTUNES.DAT not found! Installation cancelled.'
  45.   Signal DONE
  46.   End
  47. Result = SysFileTree( 'LICENSE.TXT', 'Files', 'F' )
  48. If Files.0 = 0 Then
  49.   Do
  50.   Say 'ERROR: LICENSE.TXT not found! Installation cancelled.'
  51.   Signal DONE
  52.   End
  53. Say 'Please enter the full name of the directory to which'
  54. Say 'you want Screen Blanker installed (default C:\OS2\APPS): '
  55. Pull Directory
  56. If Directory = "" Then Directory = 'C:\OS2\APPS'
  57. Result = SysFileTree( Directory, 'Dirs', 'D' )
  58. If Dirs.0 = 0 Then
  59.   Do
  60.   Result = SysMkDir( Directory )
  61.   if Result == 0 Then
  62.     Do
  63.     End
  64.   Else
  65.     Do
  66.     Say 'ERROR: Unable to create target directory. Installation cancelled.'
  67.     Signal DONE
  68.     End
  69.   End
  70. Say ''
  71. Say 'Do you wish to install the program object in the startup folder? (Y/N)'
  72. Pull YesNo
  73. If YesNo = "Y" Then
  74.   Do
  75.   Folder = '<WP_START>'
  76.   Say 'Object will be placed in the startup folder.'
  77.   End
  78. Else
  79.   Do
  80.   Folder = '<WP_DESKTOP>'
  81.   Say 'Object will be placed on the desktop.'
  82.   End
  83. Say ''
  84. Say 'Copying BLANKER.EXE to' Directory '...'
  85. Copy BLANKER.EXE Directory                  '1>NUL'
  86. Say 'Copying BLANKER.HLP to' Directory '...'
  87. Copy BLANKER.HLP Directory                  '1>NUL'
  88. Say 'Copying BLANKER.DLL to' Directory '...'
  89. Copy BLANKER.DLL Directory                  '1>NUL'
  90. Say 'Copying BLANKER.BMP to' Directory '...'
  91. Copy BLANKER.BMP Directory                  '1>NUL'
  92. Say 'Copying BLANKER.DOC to' Directory '...'
  93. Copy BLANKER.DOC Directory                  '1>NUL'
  94. Say 'Copying FORTUNES.DAT to' Directory '...'
  95. Copy FORTUNES.DAT Directory                 '1>NUL'
  96. Say 'Copying LICENSE.TXT to' Directory '...'
  97. Copy LICENSE.TXT Directory                  '1>NUL'
  98. Say 'Copying Deskpic screen saver modules to' Directory '...'
  99. Copy AQUARIUM.DSS Directory                 '1>NUL'
  100. Copy EYES.DSS Directory                     '1>NUL'
  101. Copy FIRE.DSS Directory                     '1>NUL'
  102. Copy MELT.DSS Directory                     '1>NUL'
  103. Copy OS22BOUN.DSS Directory                 '1>NUL'
  104. Copy PUZZLE.DSS Directory                   '1>NUL'
  105. Copy RAIN.DSS Directory                     '1>NUL'
  106. Copy SMARTIES.DSS Directory                 '1>NUL'
  107. Copy SPHERES.DSS Directory                  '1>NUL'
  108. Copy STRING.DSS Directory                   '1>NUL'
  109. Copy SWARM.DSS Directory                    '1>NUL'
  110. Copy MELT.DSS Directory                     '1>NUL'
  111. Copy TREK1.DSS Directory                    '1>NUL'
  112. Copy WALL.DSS Directory                     '1>NUL'
  113. Say ''
  114. Say 'Creating program object...'
  115. Say ''
  116. Type = 'WPProgram'
  117. Title = 'Screen Blanker'
  118. Parms = 'MINWIN=DESKTOP;PROGTYPE=PM;EXENAME='Directory'\BLANKER.EXE;PARAMETERS=-;STARTUPDIR='Directory';OBJECTID=<BLANKER>;NOPRINT=YES;'
  119. Result = SysCreateObject( Type, Title, Folder, Parms, 'ReplaceIfExists' )
  120. If Result = 1 Then
  121.   Say 'Screen Blanker was successfully installed.'
  122.   Say 'Make sure that' Directory 'is included in'
  123.   Say 'the LIBPATH statement in your CONFIG.SYS file.'
  124.   Say 'To register Blanker, please send 15$ (cash) to'
  125.   Say '  Peter Wansch'
  126.   Say '  37 Hagenbachgasse'
  127.   Say '  St. Andrae-Woerdern A 3423'
  128.   Say '  AUSTRIA / EUROPE'
  129.   Say '  e-mail p.wansch@ieee.org'
  130.   Exit
  131. Else
  132.   Say 'ERROR: Unable to create object. Installation cancelled.'
  133.   Exit
  134.  
  135. FAILURE:
  136. Say 'Installation error.'
  137. Signal DONE
  138. HALT:
  139. Say 'Installation error.'
  140. Signal DONE
  141. SYNTAX:
  142. Say 'Installation error.'
  143. Signal DONE
  144. DONE:
  145. Exit
  146.